VarType.DynProperties[GET]



DynProperties(bsPath As String) As Variant

Parameters

bsPath As String
A String which defines the Property.

Example: "NetAktive"
ED
avaliable
RT
avaliable

Remarks

With DynProperties it is possible to get access to additional Properties/Methods of Objects.




Sample:



Sub GetDynProp()
	'Sample: GSet the Network Aktive Flag of the Project.
	If MyWorkspace.ActiveDocument.DynProperties("NetActive") = True Then
		'read the server - computername...
		Debug.Print "Server: " & MyWorkspace.ActiveDocument.DynProperties("NetServer")
	End If
End Sub

See Also

VarType